body {
  font-family: 'Open Sans', Arial, sans-serif;
  line-height: 1.5;
  margin: 0;
  padding: 20px;
  background-color: #f9f9f9;
  color: #333;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  padding: 30px 40px;
  box-shadow: 0 0 12px rgba(0,0,0,0.1);
  border-radius: 8px;
  overflow-y: auto;
  max-height: 85vh;
}

header {
  text-align: center;
  margin-bottom: 20px;
}

.logo {
  max-width: 140px;
  margin: 0 auto 15px auto;
  display: block;
}

h1 {
  font-weight: 700;
  font-size: 24px;
  margin: 0;
  text-transform: uppercase;
}

h2 {
  font-weight: 700;
  font-size: 22px;
  margin: 8px 0 5px 0;
  color: #0072C6;
}

h3 {
  color: #0072C6;
  border-bottom: 2px solid #0072C6;
  padding-bottom: 5px;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 700;
  font-size: 20px;
}

h4 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 18px;
  color: #444;
}

p {
  margin-bottom: 15px;
  white-space: pre-line;
}

ul, ol {
  margin-left: 20px;
  margin-bottom: 15px;
}

li {
  margin-bottom: 8px;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

table, th, td {
  border: 1px solid #ddd;
}

th, td {
  padding: 8px 10px;
  text-align: left;
}

th {
  background-color: #0072C6;
  color: white;
}

.section-separator {
  border: none;
  border-bottom: 2px solid #0072C6;
  margin: 20px 0;
}

.approval p {
  font-weight: 600;
  margin: 6px 0;
}

/* Scrollbar for container */
.container::-webkit-scrollbar {
  width: 10px;
}

.container::-webkit-scrollbar-track {
  background: #eee;
  border-radius: 5px;
}

.container::-webkit-scrollbar-thumb {
  background: #0072C6;
  border-radius: 5px;
}

.container::-webkit-scrollbar-thumb:hover {
  background: #005a99;
}

@media (max-width: 900px) {
  /* Container padding */
  .container {
    padding: 10px 15px;
  }

  /* Header styling for small screens */
  header {
    text-align: center;
  }
  header .logo {
    max-width: 120px;
    margin: 0 auto 10px;
    display: block;
  }
  header h1 {
    font-size: 1.6rem;
  }
  header h2 {
    font-size: 1.2rem;
  }

  /* Reduce heading sizes */
  h1, h2, h3, h4 {
    font-size: 90%;
  }

  /* Tables: scroll horizontally if overflow */
  table {
    width: 100%;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  table th, table td {
    white-space: nowrap;
    padding: 8px 6px;
  }

  /* Sections padding */
  section {
    padding: 10px 0;
  }

  /* Approval text center */
  .approval p {
    text-align: center;
  }
}
